runtime.g.waitsince (field)

8 uses

	runtime (current package)
		heapdump.go#L361: 	dumpint(uint64(gp.waitsince))
		mgcmark.go#L216: 		if (status == _Gwaiting || status == _Gsyscall) && gp.waitsince == 0 {
		mgcmark.go#L217: 			gp.waitsince = work.tstart
		proc.go#L3351: 	gp.waitsince = 0
		proc.go#L4809: 	gp.waitsince = 0
		runtime2.go#L432: 	waitsince    int64      // approx time when the g become blocked
		traceback.go#L1235: 	if (gpstatus == _Gwaiting || gpstatus == _Gsyscall) && gp.waitsince != 0 {
		traceback.go#L1236: 		waitfor = (nanotime() - gp.waitsince) / 60e9